home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Erich Tran',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_ColorAdjustLevels():
- return {
- 'Levels': {
- 'RGB': (0,255,0.9,0,246),
- 'Red': (0,223,1,3,255),
- 'Green': (0,242,1,0,255),
- 'Blue': (30,255,1,0,246)
- }
- }
-
- def Do(Environment):
- # Color Adjust Levels
- App.Do( Environment, 'ColorAdjustLevels', Preset_ColorAdjustLevels())
-
-